home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fatted Calf
/
The Fatted Calf.iso
/
Applications
/
Games
/
NeXTmille
/
Source
/
MilesView.h
< prev
next >
Wrap
Text File
|
1990-12-26
|
683b
|
32 lines
/* Generated by Interface Builder */
#import "CardView.h"
// This is a base class for all of the distance cards.
// It holds an instance variable that details the distance value and
// performs the drawing for a distance card.
@interface MilesView:CardView
{
// This variable is declared in this base class but is
// used in the subclasses. The subclasses store their
// distance value here.
int myMiles;
}
// The miles view is a base class, of sorts.
// It locates and initializes the bottom face bitmap
// for miles distance.
- init;
- drawSelf:( const NXRect * )rects :( int )rectCount;
@end